home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / pcv05n08.zip / RDEL.ZIP / RDEL.DOC < prev    next >
Text File  |  1992-02-13  |  1KB  |  33 lines

  1. RDEL.DOC                        March 1992                      Page 242
  2. PC/Computing
  3.  
  4.         RDEL allows Recursive Deletions with DOS versions
  5.         prior to DOS 5.0.
  6.  
  7. RDEL will sweep through all or part of a disk, deleting files as it goes.  
  8. To delete all files with the extension .BAK f from the current drive,
  9. type:
  10.         
  11.         RDEL \*.BAK
  12.  
  13. In this case, RDEL starts at the root directory and works its way down
  14. through all of its descendants, including every subdirectory on the
  15. disk. If you want to delete all the BAK files from the current
  16. directory and its descendants, type:
  17.  
  18.         RDEL *.BAK
  19.  
  20. Similarly, you can delete all of the files from the \MISC directory of
  21. drive D: and the descendants of \MISC by typing:
  22.  
  23.         RDEL D:\MISC\*.BAK
  24.  
  25. RDEL, like DOS's DEL command, skips files marked with hidden, system, 
  26. or read-only attributes. Be aware that RDEL can be very dangerous to
  27. use. The command RDEL \*.* will wipe out an entire disk, so be careful
  28. when you use it, and be sure you mean what you type.
  29.  
  30.  
  31.  
  32.  
  33.